This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / web / src / routes / [handle] / [repo] / +page.svelte
211 B 7 lines
1<script lang="ts"> 2 import RepoIndexView from "$lib/components/repo/RepoIndexView.svelte"; 3 4 let { data } = $props(); 5</script> 6 7<RepoIndexView repo={data.repo} {data} bobbinUrl={data.publicConfig.bobbinUrl} />